home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / DIKUMUD.ZIP / SCRIPT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-30  |  493 b   |  23 lines

  1. /*
  2.   SillyMUD Distribution V1.1b             (c) 1993 SillyMUD Developement
  3.  
  4.   See license.doc for distribution terms.   SillyMUD is based on DIKUMUD
  5. */
  6.  
  7. struct foo_data {
  8.    char *line;
  9.  };
  10.  
  11. struct scripts {
  12.    char *filename; /* Script name to execute */
  13.    int virtual; /* Virtual number of the mob associated with the script */
  14.    struct foo_data *script; /* actual script */
  15.  } *script_data;
  16.  
  17. struct script_com {
  18.    void (*p) (char *arg, struct char_data *ch);
  19.    char *arg;
  20.  } *comp;
  21.  
  22.  
  23.